home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / strings.h,v < prev    next >
Encoding:
Text File  |  1990-06-27  |  1.5 KB  |  119 lines

  1. head     1.4;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.4
  10. date     90.06.27.13.29.37;  author shirriff;  state Exp;
  11. branches ;
  12. next     1.3;
  13.  
  14. 1.3
  15. date     89.06.23.11.30.31;  author rab;  state Exp;
  16. branches ;
  17. next     1.2;
  18.  
  19. 1.2
  20. date     88.06.29.14.58.00;  author ouster;  state Exp;
  21. branches ;
  22. next     1.1;
  23.  
  24. 1.1
  25. date     88.06.21.17.23.03;  author ouster;  state Exp;
  26. branches ;
  27. next     ;
  28.  
  29.  
  30. desc
  31. @@
  32.  
  33.  
  34. 1.4
  35. log
  36. @Updated to new Unix version of strings.h.
  37. @
  38. text
  39. @/*
  40.  * Copyright (c) 1980 Regents of the University of California.
  41.  * All rights reserved.  The Berkeley software License Agreement
  42.  * specifies the terms and conditions for redistribution.
  43.  *
  44.  *    @@(#)strings.h    5.3 (Berkeley) 11/18/87
  45.  */
  46.  
  47. #ifndef _STRINGS
  48. #define _STRINGS
  49.  
  50. /*
  51.  * External function definitions
  52.  * for routines described in string(3).
  53.  */
  54. char    *strcat();
  55. char    *strncat();
  56. int    strcmp();
  57. int    strncmp();
  58. int    strcasecmp();
  59. int    strncasecmp();
  60. char    *strcpy();
  61. char    *strncpy();
  62. int    strlen();
  63. char    *index();
  64. char    *rindex();
  65.  
  66. /* S5 compatibility */
  67. char    *memccpy();
  68. char    *memchr();
  69. int    memcmp();
  70. char    *memcpy();
  71. char    *memset();
  72. char    *strchr();
  73. char    *strdup();
  74. char    *strrchr();
  75. char    *strpbrk();
  76. char    *strsep();
  77. int    strspn();
  78. int    strcspn();
  79. char    *strtok();
  80.  
  81. /* Routines from ANSI X3J11 */
  82. char    *strerror();
  83.  
  84. #endif /* _STRINGS */
  85. @
  86.  
  87.  
  88. 1.3
  89. log
  90. @*** empty log message ***
  91. @
  92. text
  93. @d29 5
  94. d35 1
  95. d38 1
  96. d42 3
  97. @
  98.  
  99.  
  100. 1.2
  101. log
  102. @Add ifdefs so that file can't be processed twice.
  103. @
  104. text
  105. @d36 1
  106. a36 1
  107. #endif _STRINGS
  108. @
  109.  
  110.  
  111. 1.1
  112. log
  113. @Initial revision
  114. @
  115. text
  116. @d9 3
  117. d35 2
  118. @
  119.